home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 3 'Fixed Dialog
- Caption = "About SysTray Sample"
- ClientHeight = 1065
- ClientLeft = 2895
- ClientTop = 4110
- ClientWidth = 5040
- Height = 1470
- Icon = "About.frx":0000
- Left = 2835
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1065
- ScaleWidth = 5040
- ShowInTaskbar = 0 'False
- Top = 3765
- Width = 5160
- Begin VB.CommandButton cmdOK
- Caption = "&OK"
- Height = 338
- Left = 3945
- TabIndex = 1
- Top = 90
- Width = 1005
- End
- Begin VB.Label Label4
- BackStyle = 0 'Transparent
- Caption = "e-mail:"
- Height = 210
- Left = 690
- TabIndex = 4
- Top = 675
- Width = 510
- End
- Begin VB.Label lblMailTo
- BackStyle = 0 'Transparent
- Caption = "alexw@netvision.net.il"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 177
- Weight = 400
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H8000000D&
- Height = 240
- Left = 1260
- MouseIcon = "About.frx":000C
- MousePointer = 99 'Custom
- TabIndex = 3
- Top = 675
- Width = 1875
- End
- Begin VB.Label Label2
- BackStyle = 0 'Transparent
- Caption = "Copyright
- 1998, Alex Wainstein"
- Height = 240
- Left = 675
- TabIndex = 2
- Top = 405
- Width = 3210
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "SysTray Sample (uses MsgHook Control)"
- Height = 240
- Left = 675
- TabIndex = 0
- Top = 135
- Width = 3210
- End
- Begin VB.Image Image1
- Height = 480
- Left = 90
- Picture = "About.frx":015E
- Top = 90
- Width = 480
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdOK_Click()
- Unload Me
- End Sub
- Private Sub lblMailTo_Click()
- Dim res As Long
- Dim lpOperation As String
- Dim lpFile As String
- Dim lpParameters As String
- Dim lpDirectory As String
- Dim nShowCmd As Long
- lpOperation = "open"
- lpFile = "MAILTO:" + lblMailTo
- nShowCmd = vbNormalFocus
- res = ShellExecute(hwnd, lpOperation, lpFile, lpParameters, ByVal lpDirectory, nShowCmd)
- Unload Me
- End Sub
-